home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / TCL1 / GRAPH_FO / (GRAPH / CGRAPHTE / CSELRECT.H < prev    next >
Text File  |  1991-02-15  |  714b  |  25 lines

  1. /******************************************************************************
  2.  CSelRectTask.h
  3.  
  4.         Interface for the SelRectTask Class, making selections by drawing
  5.         a rectangle.
  6.  
  7.         Copyright ⌐ 1991 Maarten Meijer. All rights reserved.
  8.  
  9.  ******************************************************************************/
  10.  
  11. #define _H_CSelRectTask
  12.  
  13. /* includes */
  14. #include "CGraphTask.h"                        /* Interface for its superclass        */
  15.  
  16. /* class definition */
  17. struct CSelRectTask : CGraphTask {
  18.                 /** Instance Methods **/
  19.  
  20.                 /** Contruction/Destruction **/
  21.                 /** Mouse Tracking **/
  22.     void        EndTracking(Point *currPt, Point *prevPt, Point *startPt);
  23.                 /** Drawing the thing **/
  24.     void        Do(void);        /* Can't undo ... */
  25. };